@media screen and (max-width: 1080px) {
    
    /***** Structure *****/
    #languageOptions {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
    }
    #languageOptions {
        position: fixed;
        right: 2em;
        bottom: 3em;
        z-index: 999;
    }
    #languageOptions {
        width: 110px;
        min-height: 40px;
    }
    #languageOptions {
        background-color: #eee;
        border-radius: 20px;
        box-shadow: 0 0 5px #00000080;
    }
    #languageOptions {
        padding: 5px 0;
    }
    #languageOptions div {
        position: relative;
        cursor: pointer;
    }
    #languageOptions div {
        border-radius: 20px;
    }
    #languageOptions div:hover {
        background-color: #ccc;
        transition: .3s ease-in-out;
    }
    #languageOptions div {
        display: grid;
        grid-template-columns: auto auto;
        align-items: center;
        justify-items: center;
        gap: 10px;
    }
    #languageOptions div {
        padding: 5px 20px;
    }
    #languageOptions div img {
        width: 24px;
        height: 24px;
        border-radius: 50%;
    }
    #languageOptions div img {
        object-fit: fill;
        object-position: center;
    }
    #languageOptions div p {
        font-family: 'menu-font';
        font-size: 16px;
        text-transform: uppercase;
        color: #000;
    }
    #languageOptionsCloseButton {
        position: absolute;
        right: 0;
        top: -30px;
        cursor: pointer;
    }
    #languageOptionsCloseButton {
        background: none;
        border: none;
        padding: 0;
    }
    #languageOptionsCloseButton svg {
        width: 25px;
        color: #f0f0f1;
    }
    #languageOptionsCloseButton:hover svg {
        color: crimson;
        transition: .2s ease-in-out;
    }

}
    
    